@import url('//fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');
@font-face {
  font-family: Humanist;
  src: url(../fonts/humanst521-bt.ttf);
}
:root {
  --tj-ff-body: "Nanum Gothic", sans-serif;
  --tj-ff-heading: "Nanum Gothic", sans-serif;
  --tj-ff-p: "Nanum Gothic", sans-serif;
  /*--tj-ff-body: "Humanist", sans-serif;*/
  /*--tj-ff-heading: "Humanist", sans-serif;*/
  /*--tj-ff-p: "Humanist", sans-serif;*/
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  
  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 800;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --tj-fs-body: 0.9rem;
  --tj-fs-p: 16px;
  --tj-fs-h1: 100px;
  --tj-fs-h2: 2rem;
  --tj-fs-h3: 30px;
  --tj-fs-h4: 27px;
  --tj-fs-h5: 22px;
  --tj-fs-h6: 14px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #323c45;
  --tj-color-text-body: #717171;
  --tj-color-theme-primary: #cab364;
  --tj-color-theme-secondary: #045ca4;
  --tj-color-theme-bg: #fafafc;
  --tj-color-grey-1: #bdc5ca;
  --tj-color-grey-2: #f2f5f9;
  --tj-color-grey-3: #dcdee7;
  --tj-color-grey-4: #06080a;
  --tj-color-grey-5: #131a21;
  --tj-color-light-1: #fafafc;
  --tj-color-light-2: #ecfff3;
  --tj-color-light-3: #f0fff5;
  --tj-color-light-4: #7b7b7b;
  --tj-color-light-5: #aaeac1;
  --tj-color-light-6: #67c58a;
  --tj-color-light-7: #bec1c5;
  --tj-color-light-8: #fff61b;
  --tj-color-border-1: #fafafc;
  --tj-color-border-2: #a1acb3;
  --tj-color-border-3: #aaeac1;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
  Typography CSS
*/
body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  color: var(--tj-color-text-body);
  line-height: 1.5rem;
}

section {
  padding: 60px 0;
  margin: 0;
  position: relative;
}
.container, .container-fluid {
    position: relative;
}
.ornament1 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    overflow: hidden;
}
.ornament2 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ornament2 img {
    animation: none !important;
}
.ornament3 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: start;
    overflow: hidden;
}
.ornament3 img {
    animation: none !important;
}
.ornament4 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: start;
    overflow: hidden;
}
section.no-pad {
  padding: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
  margin-bottom: 1rem;
  font-weight: var(--tj-fw-bold);
  line-height: 1.25;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media (max-width: 767.98px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.25;
  }
}

h1 {
  font-size: var(--tj-fs-h1);
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: var(--tj-fs-h2);
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: var(--tj-fs-h3);
}

h4 {
  font-size: var(--tj-fs-h4);
}

h5 {
  font-size: var(--tj-fs-h5);
}

h6 {
  font-size: var(--tj-fs-h6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

.content a {
  color: var(--tj-color-theme-secondary);
}

button:hover {
  cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background: transparent;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #FC0080;
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--tj-color-theme-secondary);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tj-color-theme-secondary);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

::-ms-input-placeholder {
  color: var(--tj-color-grey-1);
}

::-webkit-input-placeholder {
  color: var(--tj-color-grey-1);
}

::-moz-placeholder {
  color: var(--tj-color-grey-1);
}

:-ms-input-placeholder {
  color: var(--tj-color-grey-1);
}

::placeholder {
  color: var(--tj-color-grey-1);
}

::-moz-selection {
  background: var(--tj-color-theme-secondary);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tj-color-theme-secondary);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::-moz-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*:-ms-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::-ms-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.dot-style {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-main {
  position: relative;
  overflow: hidden;
}

/**
  Buttons CSS
*/
.tj-header-btn {
  display: inline-block;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  z-index: 1;
  font-size: 15px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  padding: 13px 19px 13px 30px;
  border-radius: 0;
  border: none;
}
.tj-header-btn i {
  font-size: 18px;
  font-weight: var(--tj-fw-bold);
  margin-left: 8px;
  position: relative;
  top: 3px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: var(--tj-color-common-white);
}
.tj-header-btn:before,
.tj-header-btn:after {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  content: "";
  position: absolute;
  z-index: -1;
}
.tj-header-btn.btn {
  background: var(--tj-color-common-white);
}
.tj-header-btn.btn:before,
.tj-header-btn.btn:after {
  background: var(--tj-color-theme-primary);
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
  width: 175%;
}
.tj-header-btn.btn:before {
  left: -125%;
}
.tj-header-btn.btn:after {
  right: -124%;
}
.tj-header-btn.btn:hover:before,
.tj-header-btn.btn:hover:after {
  width: 105%;
}
.tj-header-btn:hover {
  color: var(--tj-color-theme-secondary);
}
.tj-header-btn:hover i {
  color: var(--tj-color-theme-secondary);
}

.tj-bottom-content-area {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-bottom-content-area {
    padding-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .tj-bottom-content-area {
    padding-top: 15px;
  }
}

.bottom-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.tj-top-area {
  flex-grow: 1;
  height: 40%;
  width: 100%;
  background: rgb(252,0,128);
  background: linear-gradient(45deg, rgba(252,0,128,1) 0%, rgba(70,34,161,1) 50%, rgba(36,14,87,1) 100%);
  justify-content: end;
  /* padding: 0 40px; */
}
.tj-top-area .info-top {
  display: flex;
  gap: 25px;
  height: 100%;
  align-items: center;
  color: white;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}
.tj-top-area .info-top form {
    display: flex;
    align-items: center;
    gap: 20px;
}
.tj-top-area .info-top form #search {
    height: 25px;
    margin: 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: transparent;
    color: white;
    padding: 0 20px;
    min-width: 100px;
    font-size: .8rem;
}
.tj-top-area .info-top form #search::placeholder {
    color: rgba(255, 255, 255, .5);
}
.tj-top-area .info-top form button {
    height: 30px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tj-top-area .link-top {
  display: flex;
  gap: 25px;
  height: 100%;
  align-items: center;
  color: white;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}
.tj-top-area .social-media {
  display: flex;
  gap: 25px;
  height: 100%;
  align-items: center;
  color: white;
  padding: 0 40px;
}
.tj-menu-area {
  width: 100%;
  height: 60%;
  flex-grow: 1;
}
.tj-menu-area #mobile-menu {
  height: 100%;
}
.tj-menu-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  justify-content: end;
}
.tj-menu-area ul li {
  position: relative;
  z-index: 1;
  min-width: 150px;
  height: 100%;
  border-bottom: 4px solid transparent;
  padding: 15px 0;
}
.tj-menu-area ul li:hover, .tj-menu-area ul li.current-menu-item {
  border-bottom: 4px solid #FC0080;
}
.tj-menu-area ul li a {
  color: rgba(0, 0, 0, 0.75);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  display: flex;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(0, 0, 0, .1);
  padding: 0 30px;
}
.tj-menu-area ul li:first-child a {
  border-left: none;
}
.tj-header-area.sticky .tj-menu-area ul li a {
  color: rgba(0, 0, 0, 0.75);
}
.tj-header-area.sticky .tj-menu-area ul li a::before {
  background: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-menu-area ul li a::before {
    left: -15px;
  }
}
.tj-menu-area ul li.current-menu-item a,
.tj-menu-area ul li:hover a {
  color: #FC0080;
}
.tj-menu-area ul li.current-menu-item a::before,
.tj-menu-area ul li:hover a::before {
  opacity: 1;
  visibility: visible;
}
.tj-menu-area ul li.current-menu-item a::after,
.tj-menu-area ul li:hover a::after {
  color: white;
}
.tj-header-area.sticky .tj-menu-area ul li.current-menu-item a::after,
.tj-header-area.sticky .tj-menu-area ul li:hover a::after {
  color: var(--tj-color-theme-primary);
}
.tj-header-area.sticky .tj-menu-area ul li.current-menu-item a,
.tj-header-area.sticky .tj-menu-area ul li:hover a {
  color: #FC0080;
}
.tj-menu-area ul li.has-dropdown > a {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
.tj-menu-area ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.1s;
  transition: 0.1s;
  line-height: 1;
}
.tj-menu-area ul li:last-child {
  margin-right: 0;
}
.tj-menu-area ul li > .sub-menu {
  text-align: left;
  margin: 0;
  list-style: none;
  background: white;
  position: absolute;
  opacity: 0;
  padding: 10px 0;
  visibility: hidden;
  z-index: 100;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 300px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  gap: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  top: 100%;
  display: block;
  left: 0;
  pointer-events: none;
}
.tj-menu-area ul li > .sub-menu::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--tj-color-theme-primary);
  content: "";
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.tj-menu-area ul li > .sub-menu > li {
  display: block;
  width: 100%;
  margin-right: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
.tj-menu-area ul li > .sub-menu > li > a {
  position: relative;
  padding: 8px 20px;
  display: block;
  color: rgba(0, 0, 0, 0.75);
}
.tj-header-area.sticky .tj-menu-area ul li > .sub-menu > li > a {
  color: rgba(0, 0, 0, 0.75);
}
.tj-menu-area ul li > .sub-menu > li > a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--tj-color-theme-primary);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-menu-area ul li > .sub-menu > li:last-child {
  padding-bottom: 0;
}
.tj-menu-area ul li > .sub-menu > li.has-dropdown > a::after {
  content: "\f105";
  right: 10px;
  color: var(--tj-color-common-white);
}
.tj-menu-area ul li > .sub-menu > li.current-menu-item,
.tj-menu-area ul li > .sub-menu > li:hover {
  padding-left: 15px;
}
.tj-menu-area ul li > .sub-menu > li.current-menu-item > a,
.tj-menu-area ul li > .sub-menu > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.tj-header-area.sticky
  .tj-menu-area
  ul
  li
  > .sub-menu
  > li.current-menu-item
  > a,
.tj-header-area.sticky .tj-menu-area ul li > .sub-menu > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.tj-menu-area ul li > .sub-menu > li.current-menu-item > a::before,
.tj-menu-area ul li > .sub-menu > li:hover > a::before {
  opacity: 1;
  visibility: visible;
  width: 14px;
}
.tj-menu-area ul li > .sub-menu > li.current-menu-item > a::after,
.tj-menu-area ul li > .sub-menu > li:hover > a::after {
  color: var(--tj-color-theme-primary);
}
.tj-menu-area ul li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: 0;
}
.tj-menu-area ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  pointer-events: inherit;
}
.tj-menu-area ul li:hover > .sub-menu::before {
  width: 100%;
}

.solar-scroll-top {
  position: fixed;
  right: 30px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.75rem);
  -ms-transform: translateY(0.75rem);
  transform: translateY(0.75rem);
  -webkit-box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
  box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
  -webkit-transition: all 0.2s linear, margin-right 0s;
  transition: all 0.2s linear, margin-right 0s;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .solar-scroll-top {
    right: 15px;
    bottom: 15px;
  }
}

.solar-scroll-top.progress-done {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.solar-scroll-top-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  color: #FC0080;
}

.solar-scroll-top > svg path {
  fill: none;
}

.solar-scroll-top > svg.progress-circle path {
  stroke: #FC0080;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

@media (min-width: 1px) {
  .solar-scroll-top.progress-done {
    opacity: 1;
  }
}
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@-webkit-keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tj-overlay-canvas {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.tj-offcanvas-area {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 485px;
  z-index: 9999;
  background: rgb(36, 14, 87);
    background: linear-gradient( 45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100% );
  padding: 30px 30px 30px;
  right: -450px;
  opacity: 0;
  visibility: visible;
  overflow-y: scroll;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 575px) {
  .tj-offcanvas-area {
    width: 330px;
    padding: 30px 20px;
  }
}
.tj-offcanvas-area .des {
  margin-bottom: 15px;
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .canvas-title {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.tj-offcanvas-area .canvas-title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 88px;
  height: 2px;
  background: #FC0080;
  z-index: 2;
}
.tj-offcanvas-area .canvas-title .title {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .contact-info-list {
  margin-bottom: 30px;
}
.tj-offcanvas-area .offcanvas-icon {
  font-size: 40px;
  color: var(--tj-secondary-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-offcanvas-area .offcanvas-icon i {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-icon i:hover {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-area .tj-offcanvas-header {
  margin-bottom: 25px;
}
.tj-offcanvas-area .tj-search-box {
  position: relative;
  margin-bottom: 40px;
}
.tj-offcanvas-area .tj-search-box form input {
  border: 1px solid var(--tj-primary-color);
  width: 100%;
  padding: 13px 15px;
  border-radius: 40px;
  font-size: .9rem;
}
.tj-offcanvas-area .tj-search-box form input::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::-moz-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input:-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form button {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
    line-height: normal;
    border-radius: 0px 40px 40px 0px;
    background: #FC0080;
    font-size: .9rem;
    color: var(--tj-color-common-white);
    text-align: center;
}
.tj-offcanvas-area .tj-search-box form button:hover {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-share {
  margin-bottom: 45px;
}
.tj-offcanvas-area .offcanvas-share ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.tj-offcanvas-area .offcanvas-share ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  color: #FC0080;
  background: var(--tj-color-common-white);
  position: relative;
  z-index: 3;
  font-size: 14px;
  margin-left: 10px;
}
.tj-offcanvas-area .offcanvas-share ul li a i {
  color: #FC0080;
}
.tj-offcanvas-area .offcanvas-share ul li a:first-child {
  margin-left: 0;
}
.tj-offcanvas-area .offcanvas-share ul li a:hover {
  background-color: #FC0080;
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-share ul li a:hover i {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .contact-map iframe {
  width: 400px;
  height: 227px;
}

.canvas_expanded .tj-offcanvas-area {
  right: 0;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.canvas_expanded .tj-overlay-canvas,
.canvas_expanded .tj-offcanvas-area {
  opacity: 1;
  visibility: visible;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav ul li li {
  margin-left: 15px;
}
.mean-container .mean-nav ul li li a {
  text-transform: capitalize;
  padding: 15px 35px 12px 0;
  width: 100%;
  color: var(--tj-color-common-white);
}
.mean-container .mean-nav ul li li li {
  margin-left: 15px;
}
.mean-container .mean-nav ul li li li a {
  text-transform: capitalize;
  padding: 15px 0 12px 0;
  width: 100%;
  color: var(--tj-color-common-white);
}

.mobile-navbar-menu {
  overflow: hidden;
}
.mobile-navbar-menu .mean-bar * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mobile-navbar-menu #mobile-menu > ul {
  display: block !important;
}
.mobile-navbar-menu .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mobile-navbar-menu .mean-nav {
  background: transparent;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 20px;
}
.mobile-navbar-menu .mean-nav ul li:first-child {
  border-top: none;
}
.mobile-navbar-menu .mean-nav ul li a {
  color: var(--tj-color-common-white);
  border-top: none;
  padding: 14px 0;
  width: 100%;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand i.fa-plus {
  display: block;
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand i.fa-minus {
  display: none;
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand.mean-clicked i.fa-minus {
  display: block;
  color: var(--tj-color-theme-primary);
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand.mean-clicked i.fa-plus {
  display: none;
}

.preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: default;
  position: fixed;
  z-index: 9999999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: white;
}
.preloader .tj-header-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .preloader .tj-header-btn {
    padding: 10px 15px 10px 15px;
  }
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid #cfcfcf;
  border-radius: 50%;
  text-align: center;
  line-height: 94px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .animation-preloader .spinner::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--tj-color-theme-primary);
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
.preloader .animation-preloader .spinner .loader-icon {
  width: 50px;
}
.preloader .animation-preloader .txt-loading {
  font-size: 80px;
  line-height: 118px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 700;
  margin-top: 170px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 60px;
    line-height: 95px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 50px;
    line-height: 85px;
    margin-top: 120px;
  }
}
@media (max-width: 575px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 36px;
    line-height: 65px;
    margin-top: 100px;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: #cfcfcf;
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: var(--tj-color-theme-primary);
  content: attr(data-text-preloader);
  left: 1px;
  opacity: 0;
  position: absolute;
  top: -11px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2)::before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3)::before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4)::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5)::before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6)::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7)::before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8)::before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(9)::before {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.tj-header-topbar-area {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 25px;
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-header-topbar-area {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .tj-header-topbar-area {
    margin-bottom: 0;
  }
}

.tj-header-area {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: transparent;
}
.tj-header-area .tj-top-content-area {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.tj-header-area .tj-top-content-area .logo {
  height: 100px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-right: 1px solid rgba(0, 0, 0, .1);
}
.tj-header-area .tj-top-content-area .logo img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  object-position: center;
}
.header-title {
    width: fit-content;
    text-wrap: nowrap;
    margin: 0;
    align-items: center;
    padding: 0 20px;
    background: -webkit-linear-gradient(0deg, #FC0080, #240E57, #5ABEFD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tj-header-area.header-absolute {
  background-color: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.tj-header-area.sticky {
  position: fixed;
  /* padding: 15px 0; */
  background: var(--tj-color-theme-secondary);
  /*-webkit-animation: sticky 0.9s;*/
  /*animation: sticky 0.9s;*/
}
.tj-header-area.sticky .tj-bottom-content-area {
  padding-bottom: 0;
  border: none;
}
.tj-header-area.sticky .tj-top-content-area {
  padding: 0;
  border: none;
}
.tj-header-area.header-1.header-sticky {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.tj-header-area.header-1.sticky {
  position: fixed;
  opacity: 1;
  visibility: visible;
}

.tj-header-area .tj-top-content-area {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.tj-header-area.header-absolute {
  background-color: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.tj-header-area.sticky {
  position: fixed;
  background: transparent;
  /*-webkit-animation: sticky 0.9s;*/
  /*animation: sticky 0.9s;*/
}
.tj-header-area.sticky .tj-bottom-content-area {
  padding-bottom: 0;
  border: none;
}
.tj-header-area.sticky .tj-top-content-area {
  padding: 0;
  border: none;
}
.tj-header-area.header-1.header-sticky {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.tj-header-area.header-1.sticky {
  position: fixed;
  opacity: 1;
  visibility: visible;
}

.logo-area {
  max-width: 140px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .logo-area {
    max-width: 100px;
  }
}
.logo-area a {
  display: inline-block;
}
.logo-area a img {
  width: 100%;
  height: 100px;
}

.header-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-content-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}

.info-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
  padding-right: 1rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .info-right-item {
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .info-right-item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
@media (max-width: 575px) {
  .info-right-item {
    gap: 10px;
  }
}
.info-right-item .info-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .info-right-item .info-navbar ul {
    gap: 10px;
  }
}
.info-right-item .info-navbar ul li a {
    width: 50px;
    height: 50px;
    line-height: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.75);
    background: rgba(188, 188, 188, 0.1);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
    z-index: 3;
    font-size: 25px;
}
.tj-header-area.sticky .info-right-item .info-navbar ul li a {
  color: rgba(0, 0, 0, 0.75);
  background: rgba(188, 188, 188, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-right-item .info-navbar ul li a {
    width: 40px;
    height: 40px;
  }
}
.info-right-item .info-navbar ul li a:hover {
  background-color: var(--tj-color-theme-primary);
}
.info-right-item .info-navbar ul li button {
  width: 50px;
  height: 50px;
  line-height: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  color: var(--tj-color-common-white);
  background: rgba(236, 255, 243, 0.1);
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
  position: relative;
  z-index: 3;
  font-size: 22px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.info-right-item .info-navbar ul li button i {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-right-item .info-navbar ul li button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.info-right-item .info-navbar ul li button:hover {
  background: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-right-item .tj-header-btn {
    padding: 9px 10px 9px 10px;
  }
}

.header-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 575px) {
  .header-info ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
.header-info ul li {
  position: relative;
  color: var(--tj-color-light-1);
  padding-left: 35px;
  padding: 15px 30px 15px 65px;
  border-right: 2px solid rgba(255, 255, 255, 0.15);
}
.header-info ul li:first-child {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-info ul li:first-child {
    border-left: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-info ul li {
    border-right: none;
    border-left: none;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .header-info ul li {
    padding: 8px 0 8px 25px;
  }
}
.header-info ul li a {
  color: var(--tj-color-light-1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header-info ul li i {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
}
@media (max-width: 575px) {
  .header-info ul li i {
    font-size: 18px;
    left: 0;
  }
}

.header-share ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.header-share ul li {
  border-right: 2px solid rgba(255, 255, 255, 0.15);
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding: 15px 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-share ul li {
    padding: 15px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-share ul li {
    padding: 0;
    border-right: none;
    border-left: none;
  }
}
.header-share ul li a {
  width: 24px;
  height: 24px;
  line-height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  color: var(--tj-color-common-black);
  background: var(--tj-color-common-white);
  position: relative;
  z-index: 3;
  font-size: 14px;
  margin-left: 10px;
}
.header-share ul li a i {
  color: var(--tj-color-common-black);
}
.header-share ul li a:first-child {
  margin-left: 0;
}
.header-share ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.header-share ul li a:hover i {
  color: var(--tj-color-common-white);
}

.logo-area {
  max-width: 140px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .logo-area {
    max-width: 100px;
  }
}
.logo-area a {
  display: inline-block;
}
.logo-area a img {
  width: 100%;
}

.header-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-content-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}

.info-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .info-right-item {
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .info-right-item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
@media (max-width: 575px) {
  .info-right-item {
    gap: 10px;
  }
}
.info-right-item .info-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .info-right-item .info-navbar ul {
    gap: 10px;
  }
}
.info-right-item .info-navbar ul li a {
    width: 50px;
    height: 50px;
    line-height: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.75);
    background: rgba(188, 188, 188, 0.1);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
    z-index: 3;
    font-size: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-right-item .info-navbar ul li a {
    width: 40px;
    height: 40px;
  }
}
.info-right-item .info-navbar ul li a:hover {
  background-color: var(--tj-color-theme-primary);
}
.info-right-item .info-navbar ul li button {
  width: 50px;
  height: 50px;
  line-height: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  color: var(--tj-color-common-white);
  background: rgba(236, 255, 243, 0.1);
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
  position: relative;
  z-index: 3;
  font-size: 22px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.info-right-item .info-navbar ul li button i {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-right-item .info-navbar ul li button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.info-right-item .info-navbar ul li button:hover {
  background: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-right-item .tj-header-btn {
    padding: 9px 10px 9px 10px;
  }
}

.header-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 575px) {
  .header-info ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
  }
}
.header-info ul li {
  position: relative;
  color: var(--tj-color-light-1);
  padding-left: 35px;
  padding: 15px 30px 15px 65px;
  border-right: 2px solid rgba(255, 255, 255, 0.15);
}
.header-info ul li:first-child {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-info ul li:first-child {
    border-left: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-info ul li {
    border-right: none;
    border-left: none;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .header-info ul li {
    padding: 8px 0 8px 25px;
  }
}
.header-info ul li a {
  color: var(--tj-color-light-1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header-info ul li i {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
}
@media (max-width: 575px) {
  .header-info ul li i {
    font-size: 18px;
    left: 0;
  }
}

.header-share ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.header-share ul li {
  border-right: 2px solid rgba(255, 255, 255, 0.15);
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding: 15px 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-share ul li {
    padding: 15px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .header-share ul li {
    padding: 0;
    border-right: none;
    border-left: none;
  }
}
.header-share ul li a {
  width: 24px;
  height: 24px;
  line-height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  color: var(--tj-color-common-black);
  background: var(--tj-color-common-white);
  position: relative;
  z-index: 3;
  font-size: 14px;
  margin-left: 10px;
}
.header-share ul li a i {
  color: var(--tj-color-common-black);
}
.header-share ul li a:first-child {
  margin-left: 0;
}
.header-share ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.header-share ul li a:hover i {
  color: var(--tj-color-common-white);
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.tj-footer-area {
  background: var(--tj-color-theme-secondary);
  position: relative;
  overflow: hidden;
}

.tj-footer-two {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.tj-footer-two::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(36, 14, 87);
  background: linear-gradient(
    45deg,
    rgba(36, 14, 87, 1) 0%,
    rgba(70, 34, 161, 1) 50%,
    rgba(90, 190, 253, 1) 100%
  );
  z-index: 2;
}
.tj-footer-two .footer1-col-4 {
  padding-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-footer-two .footer1-col-4 {
    padding-left: 0;
    margin-top: 30px;
  }
}
.tj-footer-two .footer1-col-4 .footer-title {
  margin-bottom: 30px;
}

.tj-footer-three {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tj-footer-three::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    78.24% 100% at 50% 100%,
    rgba(50, 60, 69, 0.98) 0%,
    rgba(50, 60, 69, 0.74) 100%
  );
  z-index: 2;
}
.tj-footer-three .footer-top-area {
  padding-top: 0;
}
.tj-footer-three .footer-top-area .footer-widget {
  margin-bottom: 0;
}
.tj-footer-three .footer-shape .fooer-overly {
  position: absolute;
  top: -45px;
  left: 0;
}
.tj-footer-three .footer-shape .shape-1 {
  position: absolute;
  top: 38px;
  left: -25px;
  z-index: 2;
}
.tj-footer-three .footer-shape .shape-2 {
  position: absolute;
  right: 56px;
  bottom: 30%;
  z-index: 2;
}

.recent-post {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 3;
  padding: 40px 15px 40px 40px;
  margin-top: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .recent-post {
    padding: 20px 15px 20px 20px;
  }
}
.recent-post::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(50, 60, 69, 0.85);
}
.recent-post .footer-title {
  position: relative;
  z-index: 4;
}
.recent-post .post-content {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.recent-post .post-content:last-child {
  margin-bottom: 0;
}
.recent-post .post-content .post-image {
  max-width: 92px;
  width: 100%;
}
.recent-post .post-content .post-text {
  max-width: 180px;
}
.recent-post .post-content .post-text span {
  color: var(--tj-color-common-white);
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
}
.recent-post .post-content .post-text span i {
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.recent-post .post-content .post-text .title {
  margin-bottom: 0;
  line-height: 1.6;
}
.recent-post .post-content .post-text .title a {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-sbold);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.recent-post .post-content .post-text .title a:hover {
  color: var(--tj-color-theme-primary);
}

.footer-section-shape .secton-group-one .shape-one {
  position: absolute;
  left: 35px;
  bottom: 35%;
  opacity: 0.1;
}
.footer-section-shape .secton-group-one .shape-two {
  position: absolute;
  left: 9%;
  bottom: 17%;
  opacity: 0.1;
}
.footer-section-shape .secton-group-one .shape-three {
  position: absolute;
  left: 26%;
  bottom: 25%;
}
.footer-section-shape .secton-group-one .shape-four {
  position: absolute;
  right: 20%;
  bottom: 15px;
}
.footer-section-shape .secton-group-one .shape-five {
  position: absolute;
  bottom: -10px;
  left: 30px;
  opacity: 0.1;
}
.footer-section-shape .secton-group-two .shape-one {
  position: absolute;
  right: 85px;
  bottom: 0;
  opacity: 0.1;
}
.footer-section-shape .secton-group-two .shape-one .image-2 {
  position: absolute;
  max-width: 170px;
  right: -65px;
  top: -95px;
}
.footer-section-shape .secton-group-two .shape-two {
  position: absolute;
  right: 13%;
  bottom: -70px;
  opacity: 0.1;
}
.footer-section-shape .secton-group-two .shape-two .image-2 {
  position: absolute;
  max-width: 120px;
  right: -45px;
  top: -70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer-section-shape {
    display: none;
  }
}

.footer-top-area {
  padding-top: 60px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer-top-area {
    padding-top: 40px;
  }
}

.footer-widget {
  margin-bottom: 50px;
}
.footer-widget .footer-title {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer-widget .footer-title {
    margin-bottom: 25px;
  }
}
.footer-widget .footer-title .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.footer1-col-2 {
  padding-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer1-col-2 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer1-col-2 {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer1-col-2 {
    padding-left: 0;
  }
}

.footer1-col-4 {
  padding-left: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer1-col-4 {
    padding-left: 0;
  }
}

.footer2-col-1 {
  position: relative;
  z-index: 2;
  padding: 69px 44px;
}
.footer2-col-1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#323c45),
    to(rgba(50, 60, 69, 0))
  );
  background: linear-gradient(180deg, #323c45 0%, rgba(50, 60, 69, 0) 100%);
}
.footer2-col-1 .footer-title {
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.footer2-col-1 .footer-timer {
  position: relative;
  z-index: 2;
}
.footer2-col-1 .footer-timer ul li {
  color: var(--tj-color-common-white);
  font-size: 18px;
  margin-bottom: 10px;
}
.footer2-col-1 .footer-timer ul li:last-child {
  margin-bottom: 0;
}

.footer2-col-2 {
  position: relative;
  z-index: 1;
  padding: 69px 30px;
}
.footer2-col-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#323c45),
    to(rgba(50, 60, 69, 0))
  );
  background: linear-gradient(180deg, #323c45 0%, rgba(50, 60, 69, 0) 100%);
}
.footer2-col-2 .footer-info {
  text-align: center;
}
.footer2-col-2 .footer-info .footer-logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 21px;
}
.footer2-col-2 .footer-info .desc {
  margin-bottom: 30px;
}
.footer2-col-2 .footer-info .desc p {
  line-height: 1.9;
}
.footer2-col-2 .footer-info .footer-share ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer2-col-3 {
  position: relative;
  z-index: 1;
  padding: 30px;
}
.footer2-col-3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#323c45),
    to(rgba(50, 60, 69, 0))
  );
  background: linear-gradient(180deg, #323c45 0%, rgba(50, 60, 69, 0) 100%);
  z-index: 2;
}
.footer2-col-3 .footer-title {
  margin-bottom: 30px;
}
.footer2-col-3 .recent-post {
  margin-top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer2-col-3 .recent-post::before {
  display: none;
}
.footer2-col-3 .recent-post .post-content {
  margin-bottom: 25px;
}
.footer2-col-3 .recent-post .post-image {
  border: 2px solid var(--tj-color-common-white);
}

.footer-info {
  width: 100%;
  position: relative;
  z-index: 3;
}
.footer-info .footer-logo {
  max-width: 140px;
  width: 100%;
  margin-bottom: 30px;
}
.footer-info .footer-logo a {
  display: inline-block;
}
.footer-info .footer-logo a img {
  width: 100%;
}
.footer-info .desc {
  margin-bottom: 36px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer-info .desc {
    margin-bottom: 20px;
  }
}
.footer-info .desc p {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.footer-share ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.footer-share ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  color: var(--tj-color-common-black);
  background: var(--tj-color-common-white);
  position: relative;
  z-index: 3;
  font-size: 14px;
  margin-left: 10px;
}
.footer-share ul li a i {
  color: #fc0080;
}
.footer-share ul li a:first-child {
  margin-left: 0;
}
.footer-share ul li a:hover {
  background-color: #fc0080;
  color: var(--tj-color-common-white);
}
.footer-share ul li a:hover i {
  color: var(--tj-color-common-white);
}

.widget_nav_menu .footer-menu {
  position: relative;
  z-index: 2;
}
.widget_nav_menu .footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_nav_menu .footer-menu ul li {
  margin-bottom: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .widget_nav_menu .footer-menu ul li {
    margin-bottom: 10px;
  }
}
.widget_nav_menu .footer-menu ul li a {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  padding-left: 0;
}
.widget_nav_menu .footer-menu ul li a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: white;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.widget_nav_menu .footer-menu ul li a:hover {
  color: white;
  padding-left: 20px;
}
.widget_nav_menu .footer-menu ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.widget_nav_menu .footer-menu ul li:last-child {
  margin-bottom: 0;
}

.footer-contact {
  position: relative;
  z-index: 2;
}
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact ul li {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
  line-height: 2;
}
.footer-contact ul li a {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer-contact ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.footer-contact ul li i {
  font-size: 25px;
  position: absolute;
  top: 0;
  left: 0;
  color: #FC0080;
}
.footer-contact ul li:last-child {
  margin-bottom: 0;
}

.footer-newsletter {
  position: relative;
  z-index: 3;
}
.footer-newsletter .desc {
  margin-bottom: 30px;
}
.footer-newsletter .desc p {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.footer-newsletter .footer-form {
  position: relative;
}
.footer-newsletter .footer-form input[type="email"] {
  background: transparent;
  border: 1px solid var(--tj-color-common-white);
  color: var(--tj-color-common-white);
  padding: 0 20px;
  height: 55px;
}
.footer-newsletter .footer-form input[type="email"]::-ms-input-placeholder {
  color: var(--tj-color-grey-1);
}
.footer-newsletter .footer-form input[type="email"]::-webkit-input-placeholder {
  color: var(--tj-color-grey-1);
}
.footer-newsletter .footer-form input[type="email"]::-moz-placeholder {
  color: var(--tj-color-grey-1);
}
.footer-newsletter .footer-form input[type="email"]:-ms-input-placeholder {
  color: var(--tj-color-grey-1);
}
.footer-newsletter .footer-form input[type="email"]::placeholder {
  color: var(--tj-color-grey-1);
}
.footer-newsletter .footer-form a {
  position: absolute;
  top: 0;
  right: 0;
  width: 53px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  font-size: 20px;
}

.tj-copyright-area {
  padding: 15px 0;
}

.copyright-content-ara {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .copyright-content-ara {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .copyright-content-ara .copyright-text {
    margin-bottom: 15px;
  }
}
.copyright-content-ara .copyright-text p {
  margin-bottom: 0;
  color: var(--tj-color-common-white);
}
.copyright-content-ara .copyright-text p a {
  color: var(--tj-color-common-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.copyright-content-ara .copyright-text p a:hover {
  color: var(--tj-color-theme-primary);
}
.copyright-content-ara .copyright-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.copyright-content-ara .copyright-menu ul li a {
  color: var(--tj-color-common-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.copyright-content-ara .copyright-menu ul li a:hover {
  color: var(--tj-color-theme-primary);
}

.carousel-home {
  height: 55vh;
  overflow: hidden;
}
.carousel-home .carousel-indicators {
  justify-content: start;
}
@media (max-width: 768px) {
  .carousel-home .carousel-indicators {
    bottom: 50px;
  }
}
.carousel-home .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.carousel-home .carousel-indicators button.active {
  margin: 0 7.5px;
}
.carousel-home .carousel-indicators button.active::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.carousel-home .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-home .carousel-inner .carousel-item {
  height: 100%;
  position: relative;
}
.carousel-home .carousel-ornament {
  position: absolute;
  bottom: 0;
  left: -100px;
  height: 600px;
  width: 600px;
  z-index: 2;
}
.carousel-home .carousel-ornament img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .25;
  animation: none;
}
.carousel-home .carousel-inner .carousel-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.35;
  z-index: 1;
  background: rgb(252,0,128);
  background: linear-gradient(45deg, rgba(252,0,128,1) 0%, rgba(70,34,161,0.5046393557422969) 50%, rgba(36,14,87,0) 100%);
}
.carousel-home .carousel-inner .carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50%;
  height: 200px;
  min-height: 45%;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3.5rem;
  color: #fff;
  text-align: left;
  z-index: 2;
  background: rgb(36, 14, 87);
  background: linear-gradient( 45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 0) 100% );
  overflow: hidden;
}
.carousel-home .carousel-inner .carousel-caption .caption-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.carousel-home
  .carousel-inner
  .carousel-item
  .carousel-caption
  .carousel-caption-title {
  position: relative;
  /* width: fit-content; */
}

.carousel-home .carousel-inner .carousel-item .carousel-caption h2 {
  color: #fff;
  font-size: 1.5rem;
  /* width: fit-content; */
  margin: 0;
  position: relative;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.25;
  position: relative;
}
@media (max-width: 768px) {
  .carousel-home .carousel-inner .carousel-item .carousel-caption h2 {
    font-size: 1.5rem;
  }
}
.carousel-home .carousel-control-next {
    top: 40%;
    right: 0;
    height: 40px;
    width: fit-content;
    transition: all 0.2s ease-in-out;
    padding: 10px 20px;
    /*box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .25);*/
    background: rgba(255, 255, 255, .25);
    color: white;
    border-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    opacity: 1;
}
.carousel-home .carousel-control-next i {
    height: 1.5rem;
    width: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: normal;
    background: rgb(36, 14, 87);
    background: linear-gradient(45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100%);
}
.carousel-home .carousel-control-prev {
    top: 40%;
    left: 0;
    height: 40px;
    width: fit-content;
    transition: all 0.2s ease-in-out;
    padding: 10px 20px;
    /*box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .25);*/
    background: rgba(255, 255, 255, .25);
    color: white;
    border-radius: 30px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    opacity: 1;
}
.carousel-home .carousel-control-prev i {
    height: 1.5rem;
    width: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: normal;
    background: rgb(36, 14, 87);
    background: linear-gradient(45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100%);
}
.carousel-home .carousel-control-next:hover,
.carousel-home .carousel-control-prev:hover {
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: rgba(255, 255, 255, 0.25) 0px 8px 24px;
}
.carousel-home .carousel-control-next-icon,
.carousel-home .carousel-control-prev-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.bg-zoom-anim img {
  animation: scale 30s linear infinite;
}

@keyframes scale {
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.btn-style-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 92, 164, 0.1);
  height: 50px;
  width: fit-content;
  padding: 0 10px 0 30px;
  color: var(--tj-color-theme-secondary);
  border-radius: 30px;
}

.btn-style-1 i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: white;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: normal;
  margin-left: 15px;
}

.btn-style-1:hover {
  background: var(--tj-color-theme-secondary);
  color: white;
}

.btn-style-1:hover i {
  background: rgba(255, 255, 255, 0.2);
}

.btn-style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  height: 50px;
  width: fit-content;
  padding: 0 10px 0 30px;
  color: white;
  border-radius: 30px;
}
.store-banner-button .btn-style-2, .store-banner-button-mobile .btn-style-2 {
    background: #4622A1;
    height: 30px;
    border-radius: 20px;
    padding: 0 5px 0 20px;
    font-size: .8rem;
}
.store-banner-button .btn-style-2 i, .store-banner-button-mobile .btn-style-2 i {
    height: 20px;
    width: 20px;
}
.btn-style-2 i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: white;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: normal;
  margin-left: 15px;
  color: #4622A1;
}
.btn-style-2:hover {
  background: white;
  color: #4622A1;
}
.btn-style-2:hover i {
  background: #4622A1;
  color: white;
}
.bg-sec-secondary {
  background: #f6f6f6;
}
.bg-blue {
  background: var(--tj-color-theme-secondary);
}
.bg-image-overlay {
  position: relative;
}
.bg-image-overlay .background {
  position: absolute;
  inset: 0;
}
.bg-image-overlay .background img {
  filter: grayscale(1);
  height: 100%;
  width: 100%;
}
.bg-image-overlay .overlay {
  inset: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(0, rgb(36 14 87 / 75%), rgb(90 190 253 / 75%));
  backdrop-filter: blur(5px);
}
.bg-image-overlay .content-section {
  position: relative;
}
.breadcrumb {
  padding: 20px 30px;
}
@media (max-width: 767.98px) {
  .breadcrumb {
    padding: 0 10px;
  }
}

.breadcrumb .breadcrumb-item a {
  color: white;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

.detail-page-header {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.detail-page-header .background {
  position: absolute;
  inset: 0;
}
.detail-page-header img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.detail-page-header .overlay {
  position: absolute;
  inset: 0;
  background: rgb(252, 0, 128);
  background: linear-gradient(
    45deg,
    rgba(252, 0, 128, 0.75) 0%,
    rgba(70, 34, 161, 0.75) 50%,
    rgba(36, 14, 87, 0.75) 100%
  );
}
.detail-page-header .content {
  position: absolute;
  z-index: 2;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  bottom: 0;
  background: white;
  padding: 30px;
}
.detail-page-header .content .meta {
  display: flex;
  gap: 20px;
}
.detail-page-header .content .meta span {
  color: #FC0080;
  text-transform: uppercase;
  padding-right: 20px;
  border-right: 2px solid #FC0080;
}
.detail-page-header .content .meta span:last-child {
  padding-right: 0;
  border-right: none;
}
.detail-page-header .content h3 {
  margin-top: 20px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, .75);
  font-weight: 800;
  font-size: 2rem;
  line-height: normal;
}
.detail-page-content {
  position: relative;
  margin: 150px 0 0 0;
}

@media (max-width: 767.98px) {
  .detail-page-content {
    margin: 100px 0 0 0;
  }
}

.content-container {
  padding: 75px 0;
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

.content-container.no-bot-pad {
  padding-bottom: 0;
}

@media (max-width: 767.98px) {
  .content-container {
    padding: 50px 0;
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
  }
}

.divider {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  margin: 50px 0;
}

.divider.small {
  margin: 20px 0;
}

.section-title {
  position: relative;
  padding: 10px 40px;
  margin-bottom: 30px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.section-title h1 {
  position: relative;
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--tj-color-theme-secondary);
}

.bg-image-overlay .section-title h1,
.bg-blue .section-title h1 {
  color: white;
}

.section-title h1::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 2px;
  border-radius: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -15px;
  background: var(--tj-color-theme-secondary);
  opacity: 1;
  z-index: 2;
}

.bg-image-overlay .section-title h1::before,
.bg-blue .section-title h1::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 2px;
  border-radius: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -15px;
  background: white;
  opacity: 1;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .section-title h1 {
    font-size: 14px;
  }
}

.content {
  padding: 0 40px;
}

@media (max-width: 767.98px) {
  .content {
    padding: 0 20px;
  }
}

.bg-image-overlay .content {
  color: white;
}

.bg-image-overlay .content h1,
.bg-image-overlay .content h2,
.bg-image-overlay .content h3,
.bg-image-overlay .content h4,
.bg-image-overlay .content h5,
.bg-image-overlay .content h6 {
  color: white;
}

.content-image {
  height: 100%;
  width: 100%;
  border-top-right-radius: 0rem;
  border-bottom-right-radius: 0rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.25) 10px 20px 40px 0px;
}

@media (max-width: 767.98px) {
  .content-image {
    position: relative;
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
    margin-top: 30px;
    right: 20px;
  }
}

.content-image.right {
  border-radius: 0;
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

@media (max-width: 767.98px) {
  .content-image.right {
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
    right: 0px;
    margin-left: 20px;
  }
}

.single-post {
  padding: 20px;
  border: 0;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  flex-direction: column;
  background: white;
}

@media (max-width: 767.98px) {
  .single-post {
    border-radius: 0rem;
    padding: 10px;
  }
}

.single-post .img-container {
  margin-bottom: 20px;
  overflow: hidden;
  display: block
}

.single-post img {
  border-radius: 0rem;
  transition: all 1s ease;
}
.single-post:hover img {
  transform: scale(1.1);
}

.single-post .meta {
  display: flex;
  gap: 20px;
  color: #b5b5b5;
  font-size: 0.8rem;
}

.single-post h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-top: 10px;
}

.single-post .desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  line-height: 1.75;
}

.single-post .divider {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.single-post .meta-bottom {
  display: flex;
  gap: 20px;
  color: #b5b5b5;
  font-size: 0.8rem;
}

.list-post {
  border-radius: 0rem;
  padding: 10px 10px;
  border: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.list-post .img-container {
  overflow: hidden;
}
.list-post img {
  border-radius: 0rem;
  transition: all 1s ease;
}
.list-post:hover img {
  transform: scale(1.1);
}

.list-post .meta {
  display: flex;
  gap: 10px;
  color: #b5b5b5;
  font-size: 0.8rem;
}

.list-post h2 {
  font-size: 1.15rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.list-post .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  line-height: 1.75;
}
.kontak-item .item h2 {
  font-size: 1.2rem;
  background: var(--tj-color-theme-secondary);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 400;
  padding: 10px 10px 10px 40px;
  width: 200px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  height: 50px;
}

.kontak-item .item h2 i {
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: normal;
}

.kontak-item .item p {
  padding-left: 40px;
  margin: 0;
  font-weight: 400;
}

.artikel-container {
  padding: 40px;
}

@media (max-width: 767.98px) {
  .artikel-container {
    padding: 10px;
  }
}

.artikel-container .single-post {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 1.5rem;
}

.artikel-container .single-post img {
  border-radius: 0rem;
}

.bisnis-slider .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.bisnis-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #cdcdcd;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.bisnis-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4622A1;
  margin: 0 7.5px;
  width: 10px;
  height: 10px;
}

.bisnis-slider .swiper-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border: 2px solid #4622A1;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.button-next {
    position: absolute;
    right: 0;
    top: 40%;
    z-index: 5;
    padding: 10px 20px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .25);
    background: white;
    color: white;
    border-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    opacity: 1;
    transition: all .4s ease-in-out;
}
.button-next i {
    height: 1.5rem;
    width: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: normal;
    background: rgb(36, 14, 87);
    background: linear-gradient(45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100%);
}
.button-prev {
    position: absolute;
    left: 0;
    top: 40%;
    z-index: 5;
    padding: 10px 20px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .25);
    background: white;
    color: white;
    border-radius: 30px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    opacity: 1;
    transition: all .4s ease-in-out;
}
.button-prev i {
    height: 1.5rem;
    width: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: normal;
    background: rgb(36, 14, 87);
    background: linear-gradient(45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100%);
}
.swiper-button-disabled{
    opacity:0;   
}
.detail-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  color: #b5b5b5;
  font-size: 0.8rem;
  line-height: normal;
}

.about-image-container {
  position: relative;
  min-height: 400px;
  aspect-ratio: 4/2;
  z-index: 1;
}

.about-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: -100px;
  box-shadow: rgba(0, 0, 0, 0.25) 10px 20px 40px 0px;
}

.about-image::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 40px;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: rgb(193 171 97);
  z-index: -1;
}
.about-image.left::before {
  left: 40px;
}

.about-image.no-ornament::before {
  display: none;
}

.about-image img {
  height: 100%;
}

@media (max-width: 768px) {
  .about-image-container {
    margin-bottom: 40px;
    min-height: 100px;
  }
  .about-image {
    left: 40px;
  }
}

.first-post {
  position: relative;
  border: 0;
}

.first-post .img-container {
  overflow: hidden;
  display: block;
  aspect-ratio: 16/6;
}

.first-post img {
  border-radius: 0rem;
  transition: all 1s ease;
}
.first-post:hover img {
  transform: scale(1.1);
}

.first-post-info {
  padding: 30px;
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 50%;
  background: rgb(36,14,87);
  background: linear-gradient(45deg, rgba(36,14,87,1) 0%, rgba(70,34,161,1) 50%, rgba(90,190,253,.5) 100%);
}

.first-post .meta {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, .75);
  font-size: 0.8rem;
}

.first-post h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
}

.first-post .desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  line-height: 1.75;
  color: white;
}

.first-post .divider {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, .5);
  margin: 20px 0;
}

.first-post .meta-bottom {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, .75);
  font-size: 0.8rem;
}

.page-menu-tabs {
  background: rgb(36, 14, 87);
  background: linear-gradient(
    45deg,
    rgba(36, 14, 87, 1) 0%,
    rgba(70, 34, 161, 1) 50%,
    rgba(90, 190, 253, 1) 100%
  );
}
.page-menu-tabs .nav-pills {
  gap: 10px;
}
.page-menu-tabs .nav-pills .nav-link {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 800;
  transition: 0.4s all ease-in-out;
  padding: 10px 30px;
  letter-spacing: 1px;
}
.page-menu-tabs .nav-pills .nav-link.active {
  background: rgb(252, 0, 128);
  background: linear-gradient(
    45deg,
    rgba(252, 0, 128, 1) 0%,
    rgba(252, 0, 128, 0) 100%
  );
  color: white;
}
.jadwal-pertandingan-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.jadwal-pertandingan-item .btn-jadwal-item {
  padding: 20px 0;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jadwal-pertandingan-item .btn-jadwal-item:active {
  border-color: transparent;
}
.jadwal-pertandingan-item .btn-jadwal-item span {
    line-height: normal;
}
.jadwal-pertandingan-item .btn-jadwal-item span:after {
    content: "Lihat";
    display: inline-flex;
    color: white;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 30px;
    padding: 0 30px;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    background: rgb(252,0,128);
    background: linear-gradient(45deg, rgba(252,0,128,1) 0%, rgba(36,14,87,1) 100%);
    transition: .4s all ease-in-out;
}
.jadwal-pertandingan-item .btn-jadwal-item.item-active span:after {
    content: "Tutup";
}
.jadwal-pertandingan-item .collapse-jadwal-item .card-body {
  border: 0;
  padding: 0;
}
.jadwal-pertandingan-item .list-jadwal {
  padding: 30px 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.jadwal-pertandingan-item .list-jadwal:last-child {
  border-bottom: none;
}
.jadwal-pertandingan-item .list-jadwal .info {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.info .logo-lawan {
  width: 100px;
  height: 100px;
}
.info .logo-lawan img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.info .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info .details p {
  font-weight: 800;
  font-size: 1rem;
}
.jadwal-pertandingan-item .list-jadwal .waktu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.waktu .saksikan-di {
  display: flex;
  gap: 10px;
  align-items: center;
}
.waktu .saksikan-di .logo-channel {
  padding: 10px 30px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}
.waktu .saksikan-di .logo-channel img {
  height: 20px;
}
.galeri-item {
  border: 0;
}

.galeri-item .img-container {
  overflow: hidden;
  display: block;
}

.galeri-item .img-container img {
  border-radius: 0rem;
  transition: all 1s ease;
}
.galeri-item:hover .img-container img {
  transform: scale(1.1);
}
.galeri-item .info { 
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: rgb(36, 14, 87);
  min-height: 200px;
  /* background: linear-gradient(45deg, rgba(36,14,87,1) 0%, rgba(70,34,161,1) 50%, rgba(90,190,253,1) 100%); */
  /* margin: 5px 2.5px 0px; */
}
.galeri-section .galeri-pre-item:nth-child(1n) .info {
  background: #240E57;
}
.galeri-section .galeri-pre-item:nth-child(2n) .info {
  background: #4622A1;
}
.galeri-section .galeri-pre-item:nth-child(3n) .info {
  background: #6524B6;
}
.galeri-section .galeri-pre-item:nth-child(4n) .info {
  background: #5ABEFD;
}
.galeri-section .galeri-pre-item:nth-child(5n) .info {
  background: #6524B6;
}
.galeri-section .galeri-pre-item:nth-child(6n) .info {
  background: #240E57;
}
.galeri-section .galeri-pre-item:nth-child(7n) .info {
  background: #4622A1;
}
.galeri-item .meta {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  position: relative;
}

.galeri-item h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
  position: relative;
}

.galeri-item .desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  line-height: 1.75;
}

.galeri-item .divider {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  margin: 20px 0;
}

.galeri-item .meta-bottom {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}
.foto-frame {
  display: flex;
  padding: 0 0 20px;
  gap: 10px;
  border-bottom: 1px solid #FC0080;
}
.foto-frame .foto-container {
  width: 75%;
  aspect-ratio: 4/3;
}
.foto-frame .foto-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.foto-frame .foto-info {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
.foto-frame .foto-info .bottom {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.foto-frame .foto-info .bottom .number {
  color: #FC0080;
  font-size: 2rem;
}
.foto-frame .foto-info .bottom .number span {
  color: rgba(0, 0, 0, .25);
  font-size: 1.5rem;
}
.foto-frame .foto-info .bottom p {
  font-size: 9px;
  margin: 0;
  color: rgba(0, 0, 0, .5);
}
.widget-container {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: white;
}
.last-game-home {
  padding: 20px 60px;
  border-right: 1px solid rgba(0, 0, 0, .1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.last-game-home .title-widget {
  background: -webkit-linear-gradient(0deg, #240E57, #5ABEFD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  font-size: 1.25rem;
}
.last-game-home .team-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.last-game-home .team-container .logo {
  width: 50px;
}
.last-game-home .team-container .poin {
  margin: 0;
  font-size: 40px;
}
.last-game-home .team-container .strip {
  height: 5px;
  width: 20px;
  background: var(--tj-color-heading-primary);
}
.last-game-home .link-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.last-game-home .link-container a {
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  flex-grow: 1;
  text-align: center;
  color: #5ABEFD;
  border-right: 1px solid rgba(0, 0, 0, .1);
}
.last-game-home .link-container a:last-child {
  border-right: none;
}
.next-game-home {
  padding: 20px 60px;
  border-right: 1px solid rgba(0, 0, 0, .1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.next-game-home .title-widget {
  background: -webkit-linear-gradient(0deg, #240E57, #5ABEFD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  font-size: 1.25rem;
}
.next-game-home .team-container {
  display: flex;
  justify-content: start;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}
.next-game-home .team-container .logo {
  width: 50px;
}
.next-game-home .team-container .poin {
  margin: 0;
  font-size: 30px;
}
.next-game-home .team-container .lokasi {
  margin: 0;
}
.next-game-home .link-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.next-game-home .link-container a {
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  flex-grow: 1;
  text-align: center;
  color: #5ABEFD;
  border-right: 1px solid rgba(0, 0, 0, .1);
}
.next-game-home .link-container a:last-child {
  border-right: none;
}
.klasemen-home {
  padding: 20px 60px;
  background: rgb(252,0,128);
  background: linear-gradient(45deg, rgba(252,0,128,1) 0%, rgba(70,34,161,1) 50%, rgba(36,14,87,1) 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.klasemen-home .title-widget {
  color: white;
  margin: 0;
  font-size: 1.25rem;
}
.klasemen-home .team-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.klasemen-home .team-container .poin {
  margin: 0;
  font-size: 40px;
  color: white;
}
.klasemen-home .team-container .table {
  display: flex;
  justify-content: space-around;
  margin: 0;
}
.klasemen-home .team-container .table .item p {
  color: white;
  margin: 0;
}
.klasemen-home .link-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.klasemen-home .link-container a {
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  flex-grow: 1;
  color: rgba(255, 255, 255, .75);
  border-right: 1px solid rgba(0, 0, 0, .1);
}
.klasemen-home .link-container a:last-child {
  border-right: none;
}
.bg-image-overlay .title {
  color: white;
}
.sponsor-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  left: 0;
  margin: 40px 0;
}
.sponsor-container .sponsor-item {
  position: relative;
  width: calc(100% / 3);
  height: 200px;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsor-container .sponsor-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  right: 1px;
  width: 1px !important;
  height: 80%;
  background: rgb(255,255,255, .5);
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,0) 100%);
}
.kontak-page .sponsor-container .sponsor-item::before {
  background: rgb(0,0,0, .5);
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,0) 100%);
}
.sponsor-container .sponsor-item:nth-child(3n)::before, .sponsor-container .sponsor-item:last-child::before {
  display: none;
}
.sponsor-container .sponsor-item:nth-child(3n)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: -200%;
  width: 300% !important;
  height: 1px;
  background: rgb(255,255,255, .5);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,0) 100%);
}
.kontak-page .sponsor-container .sponsor-item:nth-child(3n)::after {
  background: rgb(0,0,0, .5);
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,0) 100%);
}
.sponsor-container .sponsor-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transition: all .4s ease-in-out;
}
.sponsor-container .sponsor-item .real-img {
    height: 100%;
    width: 100%;
    position: relative;
}
.sponsor-container .sponsor-item .real-img img {
    opacity: 0;
}
.sponsor-container .sponsor-item:hover .real-img img {
    opacity: 1;
}
.sponsor-container .sponsor-item .overlay-img {
    inset: 20px;
    position: absolute;
}
.sponsor-container .sponsor-item .overlay-img img {
    opacity: .5;
}
.sponsor-container .sponsor-item:hover .overlay-img img {
    opacity: 0;
}
.kontak-page .sponsor-container .sponsor-item .overlay-img img {
  filter: invert(1);
  opacity: .5;
}
.kontak-page .sponsor-container .sponsor-item:hover .overlay-img img {
  filter: invert(1);
  opacity: 0;
}
.statistik-section .statistik-title {
  background: -webkit-linear-gradient(0deg, #240E57, #5ABEFD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.match-container {
  margin: 30px 0 0;
}
.match-container .match-stat-item {
  padding: 10px 0;
  border-bottom: 1px solid #4622A1;
}
.match-container .match-stat-item .title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.match-container .match-stat-item .number {
  margin: 0;
  font-size: 2.5rem;
}
.match-stat-item .number.big {
  font-size: 3.5rem;
}
.match-stat-item .number.big span {
  font-size: 2rem;
  color: rgba(0, 0, 0, .5);
}
.last-5games .last-5games-container {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.last-5games .last-5games-container .last-5games-item {
  width: calc(100% / 5 - 10px);
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5ABEFD;
  border-radius: 50%;
}
.last-5games .last-5games-container .last-5games-item span {
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
}
.top-scorers .top-scorers-container {
  margin: 30px 0 0;
}
.top-scorers .top-scorers-container .top-scorers-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #4622A1;
}
.top-scorers .top-scorers-container .top-scorers-item span {
  font-size: 1.25rem;
}
.top-scorers .top-scorers-container .top-scorers-item .goals {
  font-weight: 800;
}
.tim-section {
  position: relative;
}
.tim-section .tim-section-title {
  position: absolute;
  font-size: 100px;
  line-height: normal;
  top: 30px;
  left: 200px;
  text-transform: uppercase;
  font-weight: 800;
  z-index: 0;
  color: black;
  opacity: .1;
}
.tim-section.defender {
  background: #cdcdcd;
}
.tim-section.midfielder {
  background: #e3e3e3;
}
.tim-section.frontwielder {
  background: #fff;
}
.tim-section.goalkeepers {
  background: rgb(36, 14, 87);
  background: linear-gradient( 45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100% );
}
.pemain-card {
  position: relative;
  padding: 0 15px;
}
.pemain-card .pemain-wrapper {
  position: relative;
}
.pemain-card .pemain-wrapper .pemain-foto {
  position: relative;
  padding: 120px 0 30px;
}
.pemain-card .pemain-wrapper .pemain-foto .frame-foto {
  position: relative;
  border: 10px solid #c3a572;
  border-image: linear-gradient( to bottom, #4622A1, #FC0080) 1;
  height: 0;
  padding-top: 100%;
  width: 100%;
}
.goalkeepers .pemain-card .pemain-wrapper .pemain-foto .frame-foto {
  border: 10px solid #fff;
  border-image: linear-gradient( to bottom, rgba(255, 255, 255, 0), #FC0080) 1;
}
.pemain-card .pemain-wrapper .pemain-foto .frame-foto img {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  z-index: 0;
  transition: opacity 0.3s ease;
  max-width: 120% !important;
  opacity: 1;
  transition: .4s all ease-in-out;
}
/*.pemain-card:hover .pemain-wrapper .pemain-foto .frame-foto img {*/
/*  opacity: .85;*/
/*}*/
.pemain-card .pemain-wrapper .pemain-info {
  display: flex;
  width: 100%;
  gap: 20px;
}
.pemain-card .pemain-wrapper .pemain-info .nama-pemain {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.pemain-card .pemain-wrapper .pemain-info .pemain-number {
  font-size: 30px;
  font-weight: 800;
  color: rgba(0, 0, 0, .25);
  line-height: 1;
}
.goalkeepers .pemain-card .pemain-wrapper .pemain-info .pemain-number {
  font-size: 30px;
  font-weight: 800;
  color: rgba(255, 255, 255, .25);
  line-height: 1;
}
.pemain-card .pemain-wrapper .pemain-info .nama-pemain .nama-depan {
  font-size: 1.5rem;
  display: block;
  margin-top: 10px;
  font-weight: 800;
}
.goalkeepers .pemain-card .pemain-wrapper .pemain-info .nama-pemain .nama-depan {
  font-size: 1.5rem;
  display: block;
  margin-top: 10px;
  font-weight: 800;
  color: white;
}
.pemain-card .pemain-wrapper .pemain-info img {
  height: 20px;
  width: fit-content;
  border: 2px solid #4622A1;
}
.alamat-container {
    margin-top: 30px;
}
.alamat-container p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, .35);
}
.website-container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    position: relative;
    gap: 10px;
}
.website-container .website-item {
    width: calc(100% / 3 - 10px);
    padding: 0 0 20px;
}
.website-container .website-item a {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    line-height: normal;
    gap: 20px;
    color: rgba(0, 0, 0, .35);
    font-weight: 800;
}
.kontak-page .website-container .website-item a {
    font-size: 1rem;
}
.website-container .website-item a i {
    width: 1rem;
}
.store-container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    position: relative;
    gap: 50px;
}
.store-container .store-item {
    width: calc(100% / 3 - 50px);
    padding: 0 0 20px;
    display: block;
    filter: grayscale(1);
    opacity: .5;
}
.kontak-page .store-container .store-item {
    width: calc(100% / 2 - 50px);
}
.klasemen-tabel .current-team {
    background: rgb(36, 14, 87);
    background: linear-gradient( 45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100% );
}
.klasemen-tabel .current-team > * {
    background: transparent;
    color: white;
}
.klasemen-tabel .cell-with-img {
    display: flex;
    align-items: center;
    gap: 20px;
}
.klasemen-tabel .cell-with-img img {
    width: 20px;
}
.pemain-page-header {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    aspect-ratio: 3/1;
}
.pemain-page-header .background {
  position: absolute;
  inset: 0;
}
.pemain-page-header img {
  width: 100%;
  height: 100%;
}
.pemain-page-header .overlay {
  position: absolute;
  inset: 0;
  background: rgb(252, 0, 128);
  background: linear-gradient(
    45deg,
    rgba(252, 0, 128, 0.75) 0%,
    rgba(70, 34, 161, 0.5) 50%,
    rgba(36, 14, 87, 0) 100%
  );
}
.pemain-page-header .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 0;
    width: fit-content;
    height: 100%;
}
.pemain-page-header .content .info-pemain {
    position: relative;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}
.pemain-page-header .content .info-pemain .frame {
    position: absolute;
    height: 100%;
    border: 10px solid #5ABEFD;
    border-image: linear-gradient( to bottom, rgba(255, 255, 255, 0), #5ABEFD) 1;
    aspect-ratio: 1/1;
    top: 0px;
    left: 0;
}
.pemain-page-header .content .info-pemain .nopung {
    display: flex;
    align-items: end;
    gap: 60px;
    margin-bottom: 20px;
    position: relative;
}
.pemain-page-header .content .info-pemain .nopung .nomer {
    font-size: 5rem;
    line-height: .7;
    color: rgba(255, 255, 255, .5);
}
.pemain-page-header .content .info-pemain .nopung img {
    height: 20px;
    width: fit-content;
}
.pemain-page-header .content .info-pemain .nama-pemain {
    position: relative;
}
.pemain-page-header .content .info-pemain .nama {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.bio-container .bio-item {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.bio-container .bio-item .title {
    display: block;
    font-size: .8rem;
    font-weight: 800;
    color: rgba(0, 0, 0, .35);
    margin-bottom: 10px;
}
.bio-container .bio-item .desc {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tj-color-heading-primary);
}
.pemain-statistik {
    background: #f6f6f6;
}
.foto-pemain {
    padding: 3rem 3rem 0;
    display: flex;
    justify-content: center;
}
.foto-pemain img {
    width: 75%;
}
.statistik-container {
    height: 100%;
    background: rgb(36, 14, 87);
    background: linear-gradient( 45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100% );
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.statistik-container .jumlah-penampilan-laga {
    position: relative;
}
.statistik-container .jumlah-penampilan-laga .title {
    position: relative;
    display: block;
    font-size: 2rem;
    line-height: normal;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
}
.statistik-container .jumlah-penampilan-laga .desc {
    font-size: 10rem;
    font-weight: 800;
    position: relative;
    color: white;
    display: block;
    line-height: normal;
}
.statistik-container .divider {
    background: rgba(255, 255, 255, .25);
}
.statistik-container .other-stat {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.statistik-container .other-stat .item {
    width: 50%;
}
.statistik-container .other-stat .item .title {
    color: rgba(255, 255, 255, .5);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: normal;
    display: block;
}
.statistik-container .other-stat .item .desc {
    color: white;
    display: block;
    font-size: 4rem;
    line-height: normal;
    font-weight: 800;
}
.title-section-small {
    background: -webkit-linear-gradient(0deg, #240E57, #5ABEFD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-weight: 900;
    font-size: 1.25rem;
}
.btn-more-section {
    padding: 5px 40px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .25);
    background: rgb(36, 14, 87);
    background: linear-gradient(45deg, rgba(36, 14, 87, 1) 0%, rgba(70, 34, 161, 1) 50%, rgba(90, 190, 253, 1) 100%);
    color: white;
    border-radius: 30px;
}
.btn-more-section:hover {
    color: rgba(255, 255, 255, .5);
}
.single-post-last {
    padding: 40px;
    border: 0;
    height: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    flex-direction: column;
    background: #240E57;
    justify-content: end;
}
.single-post-last h2 {
    position: relative;
    color: white;
}
.tj-header-area.sticky .container {
    box-shadow: 0px 5px 20px 0px #0000003d;
    background: white;
}
@media (max-width: 767.98px) {
  .container-carousel {
    padding: 0;
    /*margin-bottom: 30px;*/
  }
}